Skip to main content

Get Delivery Order

GET /tms/delivery-orders/{deliveryOrderUuid}

Description

This endpoint is used to retrieve the details of a single delivery order using its unique identifier (UUID). It requires the tenant ID and country code to be specified in the headers.

Parameters

  • tenantId (string, header, required): The ID of the tenant.
  • countryCode (string, header, required): The country code.
  • deliveryOrderUuid (string, path, required): The unique identifier of the delivery order.

Responses

200 OK

  • Found the Delivery Order
  • Media type: Controls Accept header.

Example Value

{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"descriptiveMessage": "string"
}
]
}

400 Bad Request

Invalid delivery order id reference supplied

404 Not Found

Resource not found

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /tms/delivery-orders/{deliveryOrderUuid} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!